Interface EmailUser

All Superinterfaces:
IPCObject
All Known Implementing Classes:
EmailUserImpl

public interface EmailUser extends IPCObject
Information provided by the PKI file:

    \class EmailUser
    
    \brief EmailUser holds and manipulates the email user.
    
    \example network().getDevice("PC0").getProcess("EmailClient").getEmailUser()
    
Author:
Auto-generated
  • Method Details

    • getUser

      String getUser()
      Information provided by the PKI file:
      
          \brief Returns the username of the email user.
          
          \return string, the username of the email user.
          
              
      Returns:
      String Returns a String
    • getName

      String getName()
      Information provided by the PKI file:
      
          \brief Returns the name of the email user.
          
          \return string, the name of the email user.
          
              
      Returns:
      String Returns a String
    • setUser

      void setUser(String user)
      Information provided by the PKI file:
      
          \brief Sets the username for the email user.
          
          \param user, the username for the email user.
          
              
      Parameters:
      user - Takes in a parameter of user
    • setName

      void setName(String name)
      Information provided by the PKI file:
      
          \brief Sets the name for the email user.
          
          \param name, the name for the email user.
          
              
      Parameters:
      name - Takes in a parameter of name
    • getMailId

      String getMailId()
      Information provided by the PKI file:
      
          \brief Returns the email address of the email user.
          
          \return string, the email address of the email user.
          
              
      Returns:
      String Returns a String
    • getPassword

      String getPassword()
      Information provided by the PKI file:
      
          \brief Returns the password of the email user.
          
          \return string, the password of the email user.
          
              
      Returns:
      String Returns a String
    • setMailId

      void setMailId(String mailid)
      Information provided by the PKI file:
      
          \brief Sets the email address for the email user.
          
          \param mailid, the email address for the email user.
          
              
      Parameters:
      mailid - Takes in a parameter of mailid
    • setPassword

      void setPassword(String password)
      Information provided by the PKI file:
      
          \brief Sets the password for the email user.
          
          \param password, the password for the email user.
          
              
      Parameters:
      password - Takes in a parameter of password
    • getSmtpServer

      String getSmtpServer()
      Information provided by the PKI file:
      
          \brief Returns the SMTP server of the email user.
          
          \return string, the SMTP server of the email user.
          
              
      Returns:
      String Returns a String
    • getPop3Server

      String getPop3Server()
      Information provided by the PKI file:
      
          \brief Returns the POP3 server of the email user.
          
          \return string, the POP3 server of the email user.
          
              
      Returns:
      String Returns a String
    • setSmtpServer

      void setSmtpServer(String server)
      Information provided by the PKI file:
      
          \brief Sets the SMTP server for the email user.
          
          \param server, the SMTP server for the email user.
          
              
      Parameters:
      server - Takes in a parameter of server
    • setPop3Server

      void setPop3Server(String server)
      Information provided by the PKI file:
      
          \brief Sets the POP3 server for the email user.
          
          \param server, the SMTP server for the email user.
          
              
      Parameters:
      server - Takes in a parameter of server
    • getMailBox

      MailBox getMailBox()
      Information provided by the PKI file:
      
          \brief Returns the mailbox of the email user.
          
          \return string, the mailbox of the email user.  Through the object, emails can be added, accessed, removed.
          
              
      Returns:
      MailBox Returns a MailBox